In this data set, each event is represented using a frame-like structure
containing a Predicate, Agent, Theme, and a prepositional phrase.
In the Json file, each event is associated with manually annotated
polarity labels: positive (pos),  negative (neg), and neutral.


======== Event Polarity Annotations =======

./dev.csv
./test.csv

  There are 1490 events with human annotated polarity labels.
  The development set has 490 events; the test set has 1000 events.
  Both are csv files. Each line represents an event. There are 5 columns.
  Column 1-4: "Agent", "Predicate", "Theme" and "PrepositionPhrase". All words are lemmatized.
  Column 5: The annotated event polarity "pos(positive)" or "neg(negative)" or "neu(neutral)".

  The following shows an example event ``@I@ break @my@ leg''.

        *********** Example *********************
        @I@,break,@my@,leg,neg

        Column 1-4: @I@,break,@my@,leg
        Column 5: neg
        *****************************************



====== Pronoun Normalization ======

  Please note that, pronouns in the events are normalized using the following mapping:
           @I@           <--   I, me, myself
           @my@          <--   my, mine
           @we@          <--   we, us, ourselves
           @our@         <--   our, ours
           @you@         <--   you, yourself, yourselves
           @your@        <--   your, yours
           @he@          <--   he, him, himself
           @his@         <--   his
           @she@         <--   she, her, herself
           @her@         <--   hers
           @they@        <--   they, them, themselves
           @their@       <--   their, theirs


